home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / e_to_l / itgraph / vb30 / itgdemo / itgraph.bas < prev    next >
Encoding:
BASIC Source File  |  1996-09-15  |  3.6 KB  |  119 lines

  1. Rem ArrangeMode Settings
  2. Global Const ITG_ModeHierarchy% = 0
  3. Global Const ITG_ModeCompact% = 1
  4. Global Const ITG_ModeFlowChart% = 2
  5. Global Const ITG_ModeTree% = 3
  6.  
  7. Rem AutoArrange Settings
  8. Global Const ITG_ManualArrange% = 0
  9. Global Const ITG_AutoArrange% = 1
  10. Global Const ITG_ArrangeNow% = 2
  11.  
  12. Rem ConnectionAlign Settings
  13. Global Const ITG_AlignLeft% = 0
  14. Global Const ITG_AlignCenter% = 1
  15. Global Const ITG_AlignRight% = 2
  16.  
  17. Rem ConnectionArrow Settings
  18. Global Const ITG_AHNone% = 0
  19. Global Const ITG_AHSolid% = 1
  20. Global Const ITG_AHHollow% = 2
  21. Global Const ITG_AHOutline% = 3
  22. Global Const ITG_AHSolidCircle% = 4
  23. Global Const ITG_AHHollowCircle% = 5
  24.  
  25. Rem DrawBackLinks Settings
  26. Global Const ITG_NoBackLinks% = 0
  27. Global Const ITG_SolidBackLinks% = 1
  28. Global Const ITG_DashedBackLinks% = 2
  29.  
  30. Rem DrawDir Settings
  31. Global Const ITG_RightToLeft% = 0
  32. Global Const ITG_LeftToRight% = 1
  33. Global Const ITG_BottomToTop% = 2
  34. Global Const ITG_TopToBottom% = 3
  35.  
  36. Rem ItemShape Settings
  37. Global Const ITG_ShapeNone% = 0
  38. Global Const ITG_ShapeDefault% = 1
  39. Global Const ITG_ShapeRectangle% = 1
  40. Global Const ITG_ShapeEllipse% = 2
  41. Global Const ITG_ShapeRoundRect% = 3
  42. Global Const ITG_ShapeParallelogram1% = 4
  43. Global Const ITG_ShapeParallelogram2% = 5
  44. Global Const ITG_ShapeHexagon% = 6
  45. Global Const ITG_ShapePage% = 7
  46. Global Const ITG_ShapeDiamond% = 8
  47. Global Const ITG_ShapeOctagon% = 9
  48. Global Const ITG_ShapePapers1% = 10
  49. Global Const ITG_ShapePapers2% = 11
  50.  
  51. Rem ItemGraphicAlign and ItemLabelAlign Settings
  52. Global Const ITG_AlignTopLeft% = 0
  53. Global Const ITG_AlignTopCenter% = 1
  54. Global Const ITG_AlignTopRight% = 2
  55. Global Const ITG_AlignMiddleLeft% = 3
  56. Global Const ITG_AlignMiddleCenter% = 4
  57. Global Const ITG_AlignMiddleRight% = 5
  58. Global Const ITG_AlignBottomLeft% = 6
  59. Global Const ITG_AlignBottomCenter% = 7
  60. Global Const ITG_AlignBottomRight% = 8
  61.  
  62. Rem ItemGraphicStyle Settings
  63. Global Const ITG_GraphicNone% = 0
  64. Global Const ITG_GraphicIconFill% = 1
  65. Global Const ITG_GraphicIconFillIso% = 2
  66. Global Const ITG_GraphicShapeFill% = 3
  67. Global Const ITG_GraphicShapeFillIso% = 4
  68.  
  69. Rem QueryState Settings
  70. Global Const ITG_QueryNone% = 0
  71. Global Const ITG_QueryGetSources% = 1
  72. Global Const ITG_QueryGetTargets% = 2
  73. Global Const ITG_QueryGetConnections% = 3
  74. Global Const ITG_QueryGetSelectRectItems% = 4
  75. Global Const ITG_QueryIterate% = 5
  76. Global Const ITG_QueryMatchItemId% = 6
  77. Global Const ITG_QueryMatchItemData% = 7
  78. Global Const ITG_QueryMatchConnectionId% = 8
  79. Global Const ITG_QueryMatchConnectionData% = 9
  80.  
  81. Rem RubberBand Settings
  82. Global Const ITG_RBNone% = 0
  83. Global Const ITG_RBItems% = 1
  84. Global Const ITG_RBHandles% = 2
  85. Global Const ITG_RBBoth% = 3
  86.  
  87. Rem GraphicAllowImport Settings
  88. Global Const ITG_NoImportGraphics% = 0
  89. Global Const ITG_ImportGraphics% = 1
  90. Global Const ITG_ModifyDTGraphics% = 2
  91. Global Const ITG_DeleteDTGraphics% = 3
  92.  
  93. Rem StoreGraphics Settings
  94. Global Const ITG_NoLoadGraphics% = 0
  95. Global Const ITG_NoSaveGraphics% = 1
  96. Global Const ITG_SaveUsedGraphics% = 2
  97. Global Const ITG_SaveRTGraphics% = 3
  98. Global Const ITG_SaveDTGraphics% = 4
  99.  
  100. Rem AutoMouseEvent Mouse Buttons
  101. Global Const ITG_LeftButton% = 0
  102. Global Const ITG_MiddleButton% = 8
  103. Global Const ITG_RightButton% = 16
  104.  
  105. Rem AutoMouseEvent Key Modifiers
  106. Global Const ITG_ShiftDown% = 1
  107. Global Const ITG_CtrlDown% = 2
  108. Global Const ITG_AltDown% = 4
  109.  
  110. Rem AutoMouseEvent Action Flags
  111. Global Const ITG_ameNone% = 0
  112. Global Const ITG_ameMouseEvent% = 1
  113. Global Const ITG_ameConnect% = 2
  114. Global Const ITG_ameConstrained% = 4
  115. Global Const ITG_ameDrag% = 8
  116. Global Const ITG_ameSelect% = 16
  117. Global Const ITG_ameResize% = 32
  118.  
  119.